home *** CD-ROM | disk | FTP | other *** search
/ Kompuutteri K-CD 2002 #1 / K-CD_2002-01.iso / Delphi / INSTALL / program files / Borland / Delphi6 / Demos / Doc / Graphex / BMPDlg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-05-22  |  469 b   |  31 lines

  1. unit BMPDlg;
  2.  
  3. interface
  4.  
  5. uses Windows, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TNewBMPForm = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.     Label1: TLabel;
  14.     WidthEdit: TEdit;
  15.     Label2: TLabel;
  16.     HeightEdit: TEdit;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   NewBMPForm: TNewBMPForm;
  25.  
  26. implementation
  27.  
  28. {$R *.dfm}
  29.  
  30. end.
  31.